home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 1.iso
/
ARGONET
/
PD
/
PROGRAMMING
/
LCLINT-D.SPK
/
lclint
/
guide
/
only.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-08-26
|
220b
|
16 lines
extern /*@only@*/ int *glob;
/*@only@*/ int *
f (/*@only@*/ int *x, int *y,
int *z)
/*@globals int *glob;@*/
{
int *m = (int *)
malloc (sizeof (int));
glob = y;
free (x);
*m = *x;
return z;
}